home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / unixSyscall / RCS / umask.c,v < prev    next >
Text File  |  1991-12-10  |  2KB  |  109 lines

  1. head     1.1;
  2. branch   ;
  3. access   ;
  4. symbols  sprited:1.1.1;
  5. locks    ; strict;
  6. comment  @ * @;
  7.  
  8.  
  9. 1.1
  10. date     88.06.19.14.32.09;  author ouster;  state Exp;
  11. branches 1.1.1.1;
  12. next     ;
  13.  
  14. 1.1.1.1
  15. date     91.12.10.16.30.49;  author kupfer;  state Exp;
  16. branches ;
  17. next     ;
  18.  
  19.  
  20. desc
  21. @@
  22.  
  23.  
  24.  
  25. 1.1
  26. log
  27. @Initial revision
  28. @
  29. text
  30. @/* 
  31.  * umask.c --
  32.  *
  33.  *    Procedure to map from Unix umask system call to Sprite.
  34.  *
  35.  * Copyright 1986 Regents of the University of California
  36.  * All rights reserved.
  37.  */
  38.  
  39. #ifndef lint
  40. static char rcsid[] = "$Header: umask.c,v 1.1 87/03/23 16:33:07 douglis Exp $ SPRITE (Berkeley)";
  41. #endif not lint
  42.  
  43. #include "sprite.h"
  44. #include "fs.h"
  45.  
  46. #include "compatInt.h"
  47.  
  48. /*
  49.  * These are the bits to invert and pass to the Sprite system call.
  50.  */
  51.  
  52. #define PERMISSION_MASK 0777
  53.  
  54.  
  55. /*
  56.  *----------------------------------------------------------------------
  57.  *
  58.  * umask --
  59.  *
  60.  *    Procedure to map from Unix umask system call to Sprite
  61.  *    Fs_SetDefPerm.
  62.  *
  63.  * Results:
  64.  *    On success, the former value of umask is returned.  If
  65.  *    Fs_SetDefPerm returns an error,    UNIX_ERROR is returned and the
  66.  *    actual error code is stored in errno.  
  67.  *
  68.  * Side effects:
  69.  *    The default protection of files created by the current process
  70.  *    is changed.
  71.  *
  72.  *----------------------------------------------------------------------
  73.  */
  74.  
  75. int
  76. umask(newMask)
  77.     int newMask;
  78. {
  79.     ReturnStatus status;    /* result returned by Fs_SetDefPerm */
  80.     int oldMask;
  81.  
  82.     /*
  83.      * Sprite default permissions are the logical NOT of Unix permissions.
  84.      */
  85.  
  86.     newMask = (~newMask) & PERMISSION_MASK;
  87.     
  88.     status = Fs_SetDefPerm(newMask, &oldMask);
  89.     if (status != SUCCESS) {
  90.     errno = Compat_MapCode(status);
  91.     return(UNIX_ERROR);
  92.     } else {
  93.     oldMask = (~oldMask) & PERMISSION_MASK;
  94.     return(oldMask);
  95.     }
  96. }
  97. @
  98.  
  99.  
  100. 1.1.1.1
  101. log
  102. @Initial branch for Sprite server.
  103. @
  104. text
  105. @d11 1
  106. a11 1
  107. static char rcsid[] = "$Header: /sprite/src/lib/c/unixSyscall/RCS/umask.c,v 1.1 88/06/19 14:32:09 ouster Exp $ SPRITE (Berkeley)";
  108. @
  109.